home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / flashdoc.lzh / SETPARMS.DO < prev    next >
Text File  |  1992-02-20  |  2KB  |  99 lines

  1. >** - top of file - |
  2.  
  3. >**
  4.  
  5. Script name: setparms.do, V. 1.2.0 - 02/13/92.
  6.  
  7. Copyright (C) 1992 by Al Fasoldt.
  8.  
  9. WARNING! This text contains lines that may be longer than 80
  10. columns. If you edit this file, TURN WORD WRAP OFF or use a
  11. setting of more than 100 columns.
  12.  
  13. This script prompts you for standard Flash parameters, then 
  14. saves then in Flash's configuration file so that they will be 
  15. loaded each time Flash runs.
  16.  
  17. |
  18.  
  19. >** Beginning of script.|
  20. >L: NullVars|
  21. >** All variables are nulled first.|
  22. >al "[3][WARNING!|This clears all variables.|Proceed anyway?][Yes|No]" $X 2|
  23. >ifi $X "No" jmp cancel|
  24. >ty  Clearing variables ...|
  25. >ty|
  26. >$A|
  27. >$B|
  28. >$C|
  29. >$D|
  30. >$E|
  31. >$F|
  32. >$G|
  33. >$H|
  34. >$I|
  35. >$J|
  36. >$K|
  37. >$L|
  38. >$M|
  39. >$N|
  40. >$O|
  41. >$P|
  42. >$Q|
  43. >$R|
  44. >$S|
  45. >$U|
  46. >$V|
  47. >$W|
  48. >$X|
  49. >$Y|
  50. >$Z|
  51.  
  52. >al "[2][Modem reset command:][ATZ|Other]" $R 1|
  53. >ifi $R "other" qu "Type reset string:" $R|
  54. >al "[2][Baud rate:][1200|2400|9600]" $B 0|
  55. >al "[2][Duplex:][Half|Full]" $D 0|
  56. >al "[2][Word length:][8 bits|7 bits]" $W 1|
  57. >al "[2][Stop bits:][1|2]" $S 0|
  58. >al "[2][Parity:][Even|Odd|None]" $O 0|
  59. >al "[2][Echo:][On|Off]" $E 2|
  60. >al "[2][Line feeds:][On|Off]" $B 2|
  61. >al "[2][Capture status:][On|Off]" $C 1|
  62. >al "[2][Emulation:][VT52|ANSI|Vidtex]" $M 1|
  63. >al "[2][Translation:][On|Off]" $G 2|
  64. >al "[2][Xmodem CRC|or regular?][C|R]" $R 1|
  65. >al "[2][Xmodem block size:][128 bytes|1K bytes]" $L 1|
  66. >ifi $L "1K" jmp xmk|
  67. >$L|
  68. >al "[2][Xmodem timing:Tight or loose][T|L]" $T 1|
  69. >al "[2][Xmodem padding:|Standard or Ctl-Z?][S|Z]" $Z 1|
  70. >jmp setall|
  71. >L: xmk|
  72. >$L K|
  73.  
  74. >L: setall|
  75. >mp $R|
  76. >ba $B|
  77. >du $D|
  78. >wl $W|
  79. >sb $S|
  80. >py $O|
  81. >ec $E|
  82. >lf $B|
  83. >ca $C|
  84. >em $M|
  85. >tr $G|
  86. >xm $R|
  87. >xm $L|
  88. >xm $T|
  89. >xm $Z|
  90.  
  91. >sa co flash.cnf|
  92. >end|
  93.  
  94. >L: cancel|
  95. >ty  Script halted.|
  96. >ty|
  97. >end|
  98. >** end|
  99.